home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
tone.arc
/
SETMODE.ASM
< prev
next >
Wrap
Assembly Source File
|
1985-11-22
|
512b
|
17 lines
Page 60,132
Title SETMODE -- Set Mode E for GRAPH16 BASIC example.
Subttl Thomas V. Hoffmann, January 1985
Code segment para public 'code'
public SetMode
SetMode proc far
Mov ax,000EH ; Set 320 by 200, 16 color mode
Int 10H
Ret ; Return to BASIC
SetMode Endp
Code Ends
End